home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BBS Toolkit
/
BBS Toolkit.iso
/
remote
/
fddev202.zip
/
C.ARJ
/
REQUEST.H
< prev
next >
Wrap
Text File
|
1991-10-02
|
1KB
|
34 lines
/*
** request.h (FrontDoor)
**
** Copyright 1991 Joaquim H. Homrighausen. All rights reserved.
**
** REQUEST.FD format for FrontDoor 2.00+
**
** Last revision: 91-10-02
**
** -------------------------------------------------------------------------
** This information is not necessarily final and is subject to change at any
** given time without further notice
** -------------------------------------------------------------------------
*/
#define ACTIVE 0x01
#define DELETED 0x02 /* Never written to disk */
/*
** The "filename" and "password" fields are NUL terminated.
*/
typedef struct
{
char
filename[41], /* Filename or unique portion thereof */
password[17]; /* Password */
byte
status; /* 0==Inactive */
}
_REQUEST, *REQPTR;
/* end of file "request.h" */